  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #fff;
            color: #333;
        }

        header {
            max-width: 1100px;
            margin: 0 auto;
        }

        main {
            max-width: 1100px;
            margin: 20px auto;
        }

        h2 {
            font-size: 1.5em;
            margin-bottom: 10px;
        }

        p {
            font-size: 1em;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .top-bar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 10px 0px;
            background-color: #fff;
            border-bottom: 1px solid #ccc;
            justify-content: space-between;
        }

        .logo {
            height: 40px;
            margin-right: 20px;
        }

        nav {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        nav span {
            font-weight: bold;
            white-space: nowrap;
        }

        .top-links {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .top-links a {
            color: #d00;
            font-size: 0.9em;
            text-decoration: none;
        }

        .top-links select {
            padding: 4px;
        }

        .welcome-bar {
            background: #eee;
            border-left: 6px solid #c00;
            padding: 10px 20px;
            font-size: 1.2em;
        }

        .intro-text {
            padding: 15px 20px;
            font-size: 1em;
        }

        .content {
            display: flex;
            flex-wrap: wrap;
            padding: 20px;
            gap: 20px;
            justify-content: center;
            align-items: center;
        }

        .main-image {
            max-width: 600px;
            width: 100%;
            /* border-radius: 10px; */
            object-fit: cover;
        }

        .options {
            display: flex;
            flex-direction: column;
            gap: 15px;
            width: 280px;
        }

        .option {
            display: flex;
            align-items: center;
            font-size: 1em;
            background: #f5f5f5;
            padding: 20px;
            /* border-radius: 10px; */
            text-decoration: none;
            color: #000;
            /* border: 1px solid #ccc; */
            transition: 0.3s;
            gap: 10px;

        }

        .option span {
            font-size: 1.5em;
            margin-right: 10px;
        }
        .option img{
            width: 30px;
            /* height: ; */
        }
        .option:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            color: red;
        }

        .red {
            background: #e0e0e0;
            color: #111;
        }

        .blue {
            background: #e0e0e0;
            color: #111;
        }

        .yellow {
            background: #e0e0e0;
        }

        .green {
            background: #e0e0e0;
            color: #111;
        }

        .slider-container.fade {
            position: relative;
            width: 100%;
            max-width: 600px;
            height: 350px;
            /* fixed height */
            overflow: hidden;
            /* border-radius: 10px; */
        }

        .fade-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            animation: fadeAnimation 12s infinite;
            transition: opacity 1s ease-in-out;
            /* border-radius: 10px; */
        }

        /* Assign delay to each image */
        .fade-slide:nth-child(1) {
            animation-delay: 0s;
        }

        .fade-slide:nth-child(2) {
            animation-delay: 4s;
        }

        .fade-slide:nth-child(3) {
            animation-delay: 8s;
        }

        @keyframes fadeAnimation {
            0% {
                opacity: 0;
            }

            8% {
                opacity: 1;
            }

            25% {
                opacity: 1;
            }

            33% {
                opacity: 0;
            }

            100% {
                opacity: 0;
            }
        }

        footer {
            text-align: center;
            padding: 20px;
            font-size: 0.9em;
            background-color: #f8f8f8;
            margin-top: 30px;
        }

        @media screen and (max-width: 768px) {
            nav {
                justify-content: center;
            }

            .content {
                flex-direction: column;
                align-items: center;
            }

            .options {
                width: 100%;
                max-width: 400px;
            }
             .top-bar {
                padding: 10px 20px;
             }
        }